home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Modem Sharing / SyGate.exe / data1.cab / NatServer_Files / system.sar
Encoding:
Text File  |  2000-09-13  |  33.8 KB  |  1,694 lines

  1. ##############################################################################
  2. # Sybergen Access Server and SyGate Application Rule Configuration File
  3. # version 1.9
  4. # Copyright(c) 2000 by Sybergen Networks Inc., all rights reserved.
  5. #
  6. ##############################################################################
  7. #
  8. # For details, please visit:  http://www.sybergen.com/support/conf_sg.htm
  9. #                             http://www.sybergen.com/support/applications.htm
  10. #
  11. #  Overview:
  12. #
  13. # This file defines a list of rules for Sybergen Access Server or SyGate to
  14. # follow when processing packets.   According to each rule, Sybergen Secure 
  15. # Desktop or SyGate will dynamically create a serias of tunnels to provide 
  16. # the path for packets to flow through. 
  17. #
  18. #
  19. #  ----------------------------------------------------------------------------------------
  20. #  An application rule consists of:
  21. #
  22. #  :INIT    <Rule Name>
  23. #  Triggering Transaction
  24. #  :SUB
  25. #  Sub-trans-1
  26. #  Sub-trans-2
  27. #  ........
  28. #  :END
  29. #
  30. #  Where: <Rule Name> is the name of the application. This could be any name. See example
  31. #         for detail.
  32. #         Triggering transaction is the first traffic the application generates
  33. #
  34. #  Sub-trans-x and Triggering Transaction could be "Inbound Trans" and "Outbound Trans" 
  35. #  defined below respectively.
  36. #
  37. #  ---------------------------------------------------------------------------------------- 
  38. #  Inbound Trans Syntax:
  39. #
  40. #  Direction  ProtocolType  DestinationPortLow DestinationPortHigh ClientIP ClientPort MaxIdleTime Options 
  41. #  
  42. #  Description:
  43. #  ===========
  44. #
  45. #  Filed Name        Valid Value
  46. #  ==========        ===========
  47. #
  48. #  Direction:         IN
  49. #  ProtcolType:        "TCP" or "UDP"
  50. #
  51. #  DestinationPortHigh:    The upper bound of the destination port range
  52. #  DestinationPortLow:  The lower bound of the destination port range
  53. #
  54. #    (note: INIT Trans have and only have one port. The current version doesn't support
  55. #    a range of ports on INIT trans. In the other words, PortHigh shall be equal to 
  56. #    PortLow on INIT trans.
  57. #
  58. #  ClientIp:        This field tells Sybergen Access Server or SyGate where to pass the
  59. #                       incoming packet with the destination port in the range defined by 
  60. #                       DestinationPortHigh and DestinationPortLow.
  61. #                       
  62. #                       This field has to be set to 0.0.0.0 for Sub-trans-x.
  63. #                       For Triggering Transaction, this field must be set to the IP
  64. #                       of one of the clients.
  65. #
  66. #  ClientPort:            This field tells Sybergen Access Server or SyGate which port of the
  67. #                       ClientIp to send the incoming packet with the destination port in
  68. #                       the range defined by DestinationPortHigh and DestinationPortLow. 
  69. #
  70. #                       If this value is 0, the packet will be send to the port same 
  71. #                       as the destination port of the incoming packet. 
  72. #                If this value is not zero, the packet will be sent to the defined
  73. #                       port instead of the original destination port. By doing this, we 
  74. #                       can redirect the packets sent to 
  75. #                port 8080 of Sybergen Access Server or SyGate PC to port 80 of 
  76. #                       Sybergen Access Server or SyGate client by using
  77. #                       following line:
  78. #
  79. #                       IN TCP 8080 8080 192.168.0.2 80 0 -
  80. #
  81. #
  82. #  MaxIdleTime:        This field tells Sybergen Access Server or SyGate to close the tunnel
  83. #                       after certain idle milliseconds.
  84. #
  85. #                       Set to 0 for Sybergen Access Server or SyGate to use the default
  86. #                       idle timeout value.  
  87. #                      
  88. #
  89. #  Options:                
  90. #            -    -----    None
  91. #
  92. #            M    -----    This value tells Sybergen Access Server or SyGate
  93. #                             to close all Sub-tunnels if the triggering connection no
  94. #                             longer exists due to either timeout or user application disconnect,
  95. #                             etc. 
  96. #                    This option is only valid in Triggering Transaction. 
  97. #
  98. #            H    -----    H.323 specfic rule. Sybergen Access Server or
  99. #                             SyGate will process the packets according to H.323 protocol.
  100. #                             Users should not use this option to define new rules. 
  101. #
  102. #            A    -----    This option tells Sybergen Access Server or SyGate
  103. #                             to pass packets from any remote hosts to specific port defined
  104. #                             in the rule. If this option is not specified, only the packets
  105. #                             from the remote host that the Triggering Transaction visited
  106. #                             can be passed to the ClientPort of the triggering client. See
  107. #                             "DirectPlay" rule for more details.
  108. #
  109. #            D    -----    This option can only be used in Sub-Trans-x. It tells
  110. #                             Sybergen Access Server or SyGate to keep creating tunnels for
  111. #                             each connection between the triggering Sybergen Access Server
  112. #                             or SyGate client and remote hosts. Without this option, only one 
  113. #                             tunnel can be created for each Sub-Trans-x rule. See "DirectPlay" 
  114. #                             rule for more details.
  115. #
  116. #  ----------------------------------------------------------------------------------------
  117. #
  118. #  Outbound Trans Syntax:
  119. #
  120. #  Direction  ProtocolType  DestinationPortLow DestinationPortHigh ClientIp MaxIdleTime Options
  121. #
  122. #  Description:
  123. #  ===========
  124. #
  125. #  Direction:         OUT
  126. #
  127. #  ProtcolType:        "TCP" or "UDP"
  128. #
  129. #  DestinationPortHigh:    The upper bound of the destination port range
  130. #  DestinationPortLow:  The lower bound of the destination port range
  131. #
  132. #    (note: INIT Trans have and only have one port. The current version doesn't support
  133. #    a range of ports on INIT trans. In the other words, PortHigh shall be equal to 
  134. #    PortLow on INIT trans.
  135. #
  136. #  ClientIp:        This field tells Sybergen Access Server or SyGate which client
  137. #                       can trigger the rule.  In Trigger Tansaction, 0.0.0.0 means any
  138. #                       client can trigger.   In Sub-Trans-x, ClietnIP has to be 0.0.0.0 
  139. #
  140. #  MaxIdleTime:        This field tells Sybergen Access Server or SyGate to close the
  141. #                       tunnel after certain idle milliseconds.
  142. #
  143. #                       Set to 0 for Sybergen Access Server or SyGate to use the default
  144. #                       idle timeout value.  
  145. #                      
  146. #  Options:                
  147. #            -    -----    None
  148. #
  149. #            M    -----    This value tells Sybergen Access Server or SyGate
  150. #                             to close all Sub-tunnels if the triggering connection no longer
  151. #                             exists due to either timeout or user application disconnect, etc. 
  152. #                    This option is only valid in Triggering Transaction. 
  153. #
  154. #            R    -----    This option tells Sybergen Access Server or SyGate
  155. #                             to use a different source port to send the packet. See
  156. #                             "DirectPlay" rule for more details.
  157. #                    
  158. #            H    -----    H.323 specfic rule. Sybergen Access Server or SyGate
  159. #                             will process the packets according to H.323 protocol. Users
  160. #                             should not use this option to define new rules. 
  161. #
  162. #            F    -----    FTP activity mode specfic. Users should not use this
  163. #                             option to define new rules. 
  164. #
  165. #            I    -----    IRC DCC mode specifc. Users should not use this option
  166. #                             to define new rules. 
  167. #
  168. #            D    -----    This option can only be used in Sub-Trans-x. It tells
  169. #                             Sybergen Access Server or SyGate keep creating tunnels for each
  170. #                             connection between the triggering Sybergen Access Server or
  171. #                             SyGate client and remote hosts. Without this option, only one 
  172. #                             tunnel can be created for each Sub-Trans-x rule. See "DirectPlay" 
  173. #                             rule for more details.
  174. #
  175. #    Note:    1)     After making any changes to this file, you MUST stop and restart the
  176. #                 Sybergen Access Server or SyGate service for your changes
  177. #                               to be in effect.  
  178. #        2)    Un-installing or re-installing Sybergen products may remove or update
  179. #                               this file.
  180. #                Please save a copy of any change you made in this file.
  181. #############################################################################
  182. #
  183. #    TROUBLESHOOTING
  184. #
  185. #
  186. #    For the apprule to work, there are certain way to check for error.
  187. #    Example:
  188. #
  189. #    #
  190. #    # :INIT "Our FTP server"
  191. #    # IN TCP 21 21 192.168.0.2 0 86400000 -
  192. #    # :SUB
  193. #    # :END
  194. #    #
  195. #    
  196. #    1) No "#" sign and blank space in front of this rule.
  197. #    2) No error initialing the previous rule
  198. #
  199. #    :INIT "Our FTP server"
  200. #    IN TCP 21 21 192.168.0.2 0 86400000 -
  201. #    :SUB
  202. #    :END
  203. #
  204. #    3) Check the log file in the Sybergen Access Server or SyGate Manager under
  205. #               troubleshooting to see if the rule is being properly executed.
  206. #
  207. #
  208. #############################################################################
  209. ##### SYSTEM DEFINITION ##################################################
  210.  
  211. :INIT "FTP activity mode"
  212. OUT TCP 21 21 0.0.0.0 86400000 MRF
  213. :SUB
  214. :DESC
  215.  
  216. ~
  217. :ENABLE
  218. 1
  219. :END
  220.  
  221.  
  222. :INIT "mIRC port 6660"
  223. OUT TCP 6660 6660 0.0.0.0 0 MRI
  224. :SUB
  225. IN TCP 59 59 0.0.0.0 0 0 -
  226. IN TCP 113 113 0.0.0.0 0 0 -
  227. :DESC
  228. IRC DCC. The IRC port is usually 6660-6670, 7000, 8888, or 9999
  229. If you are using a different port number just change one of
  230. these apprules to the port number you are using.
  231. ~
  232. :ENABLE
  233. 1
  234. :END
  235.  
  236.  
  237. :INIT "mIRC port 6661"
  238. OUT TCP 6661 6661 0.0.0.0 0 MRI
  239. :SUB
  240. IN TCP 59 59 0.0.0.0 0 0 -
  241. IN TCP 113 113 0.0.0.0 0 0 -
  242. :DESC
  243.  
  244. ~
  245. :ENABLE
  246. 1
  247. :END
  248.  
  249.  
  250. :INIT "mIRC port 6662"
  251. OUT TCP 6662 6662 0.0.0.0 0 MRI
  252. :SUB
  253. IN TCP 59 59 0.0.0.0 0 0 -
  254. IN TCP 113 113 0.0.0.0 0 0 -
  255. :DESC
  256.  
  257. ~
  258. :ENABLE
  259. 1
  260. :END
  261.  
  262.  
  263. :INIT "mIRC port 6663"
  264. OUT TCP 6663 6663 0.0.0.0 0 MRI
  265. :SUB
  266. IN TCP 59 59 0.0.0.0 0 0 -
  267. IN TCP 113 113 0.0.0.0 0 0 -
  268. :DESC
  269.  
  270. ~
  271. :ENABLE
  272. 1
  273. :END
  274.  
  275.  
  276. :INIT "mIRC port 6664"
  277. OUT TCP 6664 6664 0.0.0.0 0 MRI
  278. :SUB
  279. IN TCP 59 59 0.0.0.0 0 0 -
  280. IN TCP 113 113 0.0.0.0 0 0 -
  281. :DESC
  282.  
  283. ~
  284. :ENABLE
  285. 1
  286. :END
  287.  
  288.  
  289. :INIT "mIRC port 6665"
  290. OUT TCP 6665 6665 0.0.0.0 0 MRI
  291. :SUB
  292. IN TCP 59 59 0.0.0.0 0 0 -
  293. IN TCP 113 113 0.0.0.0 0 0 -
  294. :DESC
  295.  
  296. ~
  297. :ENABLE
  298. 1
  299. :END
  300.  
  301.  
  302. :INIT "mIRC port 6666"
  303. OUT TCP 6666 6666 0.0.0.0 0 MRI
  304. :SUB
  305. IN TCP 59 59 0.0.0.0 0 0 -
  306. IN TCP 113 113 0.0.0.0 0 0 -
  307. :DESC
  308.  
  309. ~
  310. :ENABLE
  311. 1
  312. :END
  313.  
  314.  
  315. :INIT "mIRC port 6667"
  316. OUT TCP 6667 6667 0.0.0.0 0 MRI
  317. :SUB
  318. IN TCP 59 59 0.0.0.0 0 0 -
  319. IN TCP 113 113 0.0.0.0 0 0 -
  320. :DESC
  321.  
  322. ~
  323. :ENABLE
  324. 1
  325. :END
  326.  
  327.  
  328. :INIT "mIRC port 6668"
  329. OUT TCP 6668 6668 0.0.0.0 0 MRI
  330. :SUB
  331. IN TCP 59 59 0.0.0.0 0 0 -
  332. IN TCP 113 113 0.0.0.0 0 0 -
  333. :DESC
  334.  
  335. ~
  336. :ENABLE
  337. 1
  338. :END
  339.  
  340.  
  341. :INIT "mIRC port 6669"
  342. OUT TCP 6669 6669 0.0.0.0 0 MRI
  343. :SUB
  344. IN TCP 59 59 0.0.0.0 0 0 -
  345. IN TCP 113 113 0.0.0.0 0 0 -
  346. :DESC
  347.  
  348. ~
  349. :ENABLE
  350. 1
  351. :END
  352.  
  353.  
  354. :INIT "mIRC port 6670"
  355. OUT TCP 6670 6670 0.0.0.0 0 MRI
  356. :SUB
  357. IN TCP 59 59 0.0.0.0 0 0 -
  358. IN TCP 113 113 0.0.0.0 0 0 -
  359. :DESC
  360.  
  361. ~
  362. :ENABLE
  363. 1
  364. :END
  365.  
  366.  
  367. :INIT "mIRC port 7000"
  368. OUT TCP 7000 7000 0.0.0.0 0 MRI
  369. :SUB
  370. IN TCP 59 59 0.0.0.0 0 0 -
  371. IN TCP 113 113 0.0.0.0 0 0 -
  372. :DESC
  373.  
  374. ~
  375. :ENABLE
  376. 1
  377. :END
  378.  
  379.  
  380. :INIT "mIRC port 8888"
  381. OUT TCP 8888 8888 0.0.0.0 0 MRI
  382. :SUB
  383. IN TCP 59 59 0.0.0.0 0 0 -
  384. IN TCP 113 113 0.0.0.0 0 0 -
  385. :DESC
  386.  
  387. ~
  388. :ENABLE
  389. 1
  390. :END
  391.  
  392.  
  393. :INIT "mIRC port 9999"
  394. OUT TCP 9999 9999 0.0.0.0 0 MRI
  395. :SUB
  396. IN TCP 59 59 0.0.0.0 0 0 -
  397. IN TCP 113 113 0.0.0.0 0 0 -
  398. :DESC
  399.  
  400. ~
  401. :ENABLE
  402. 1
  403. :END
  404.  
  405.  
  406. :INIT "mIRC Chat"
  407. OUT TCP 100 100 0.0.0.0 0 MRI
  408. :SUB
  409. IN TCP 101 101 0.0.0.0 0 0 -
  410. :DESC
  411.  
  412. ~
  413. :ENABLE
  414. 1
  415. :END
  416.  
  417.  
  418. :INIT "mIRC Fserve"
  419. OUT TCP 110 110 0.0.0.0 0 MRI
  420. :SUB
  421. IN TCP 111 111 0.0.0.0 0 0 -
  422. :DESC
  423.  
  424. ~
  425. :ENABLE
  426. 1
  427. :END
  428.  
  429.  
  430. :INIT "mIRC Send"
  431. OUT TCP 120 120 0.0.0.0 0 MRI
  432. :SUB
  433. IN TCP 121 121 0.0.0.0 0 0 -
  434. :DESC
  435.  
  436. ~
  437. :ENABLE
  438. 1
  439. :END
  440.  
  441.  
  442. :INIT "mIRC Get"
  443. OUT TCP 130 130 0.0.0.0 0 MRI
  444. :SUB
  445. IN TCP 131 131 0.0.0.0 0 0 -
  446. OUT TCP 132 132 0.0.0.0 0 -
  447. :DESC
  448.  
  449. ~
  450. :ENABLE
  451. 1
  452. :END
  453.  
  454.  
  455. :INIT "CU-SeeMe"
  456. OUT UDP 24032 24032 0.0.0.0 0 R
  457. :SUB
  458. IN UDP 1414 1414 0.0.0.0 0 0 HAD
  459. IN UDP 1424 1424 0.0.0.0 0 0 HAD
  460. IN TCP 1503 1503 0.0.0.0 0 0 AD
  461. IN TCP 1720 1720 0.0.0.0 0 0 HAD
  462. IN UDP 1812 1813 0.0.0.0 0 0 AD
  463. IN TCP 7640 7640 0.0.0.0 0 0 AD
  464. IN TCP 7642 7642 0.0.0.0 0 0 AD
  465. IN UDP 7648 7648 0.0.0.0 0 0 AD
  466. IN TCP 7648 7648 0.0.0.0 0 0 AD
  467. IN TCP 7649 7649 0.0.0.0 0 0 AD
  468. IN UDP 24032 24032 0.0.0.0 0 0 AD
  469. IN UDP 56800 56800 0.0.0.0 0 0 AD
  470. OUT UDP 1414 1414 0.0.0.0 0 HD
  471. OUT UDP 1424 1424 0.0.0.0 0 HD
  472. OUT TCP 1503 1503 0.0.0.0 0 D
  473. OUT TCP 1720 1720 0.0.0.0 0 HD
  474. OUT UDP 1812 1813 0.0.0.0 0 D
  475. OUT TCP 7640 7640 0.0.0.0 0 D
  476. OUT TCP 7642 7642 0.0.0.0 0 D
  477. OUT UDP 7648 7648 0.0.0.0 0 D
  478. OUT TCP 7648 7648 0.0.0.0 0 D
  479. OUT TCP 7649 7649 0.0.0.0 0 D
  480. OUT UDP 56800 56800 0.0.0.0 0 D
  481. :DESC
  482. This will allow you to connect to the CU-SeeMe network.
  483. You will need to have the H.323 apprule in order to video
  484. conference with anyone.
  485. ~
  486. :ENABLE
  487. 1
  488. :END
  489.  
  490.  
  491. :INIT "Internet Phone 5"
  492. OUT UDP 22555 22555 0.0.0.0 0 -
  493. :SUB
  494. :DESC
  495.  
  496. ~
  497. :ENABLE
  498. 1
  499. :END
  500.  
  501.  
  502. :INIT "Net2Phone"
  503. OUT UDP 6801 6801 0.0.0.0 0 R
  504. :SUB
  505. IN UDP 1 30000 0.0.0.0 0 0 AD
  506. IN TCP 1 30000 0.0.0.0 0 0 AD
  507. :DESC
  508.  
  509. ~
  510. :ENABLE
  511. 1
  512. :END
  513.  
  514.  
  515. :INIT "Calista IP Phone"
  516. OUT TCP 4099 4099 0.0.0.0 0 R
  517. :SUB
  518. IN UDP 3000 3000 0.0.0.0 0 0 D
  519. :DESC
  520.  
  521. ~
  522. :ENABLE
  523. 1
  524. :END
  525.  
  526.  
  527. :INIT "BAYVPN"
  528. OUT UDP 500 500 0.0.0.0 0 -
  529. :SUB
  530. :DESC
  531.  
  532. ~
  533. :ENABLE
  534. 1
  535. :END
  536.  
  537.  
  538. :INIT "FW1VPN"
  539. OUT UDP 259 259 0.0.0.0 0 -
  540. :SUB
  541. :DESC
  542.  
  543. ~
  544. :ENABLE
  545. 1
  546. :END
  547.  
  548.  
  549. :INIT "Shiva VPN"
  550. OUT UDP 2233 2233 0.0.0.0 0 -
  551. :SUB
  552. IN UDP 2233 2233 0.0.0.0 0 0 AD
  553. :DESC
  554. Set the mobile option in the Shiva VPN client software
  555. to be your public IP address
  556. ~
  557. :ENABLE
  558. 0
  559. :END
  560.  
  561.  
  562. :INIT "CITRIX Metaframe"
  563. OUT TCP 1494 1494 0.0.0.0 0 R
  564. :SUB
  565. IN TCP 1494 1494 0.0.0.0 0 0 AD
  566. :DESC
  567.  
  568. ~
  569. :ENABLE
  570. 1
  571. :END
  572.  
  573.  
  574. :INIT "MS Terminal Server"
  575. OUT TCP 3389 3389 0.0.0.0 0 R
  576. :SUB
  577. IN TCP 3389 3389 0.0.0.0 0 0 AD
  578. :DESC
  579.  
  580. ~
  581. :ENABLE
  582. 1
  583. :END
  584.  
  585.  
  586. :INIT "Network Time Protocol"
  587. OUT UDP 123 123 0.0.0.0 0 R
  588. :SUB
  589. IN UDP 123 123 0.0.0.0 0 0 AD
  590. :DESC
  591.  
  592. ~
  593. :ENABLE
  594. 1
  595. :END
  596.  
  597.  
  598. :INIT "CrisNet"
  599. OUT TCP 32760 32760 0.0.0.0 0 R
  600. :SUB
  601. IN TCP 1367 1367 0.0.0.0 0 0 AD
  602. IN TCP 32760 32760 0.0.0.0 0 0 AD
  603. :DESC
  604.  
  605. ~
  606. :ENABLE
  607. 1
  608. :END
  609.  
  610.  
  611. :INIT "RealAudio 7070"
  612. OUT TCP 7070 7070 0.0.0.0 0 R
  613. :SUB
  614. IN UDP 6970 7170 0.0.0.0 0 0 AD
  615. :DESC
  616.  
  617. ~
  618. :ENABLE
  619. 1
  620. :END
  621.  
  622.  
  623. :INIT "QuickTime"
  624. OUT TCP 554 554 0.0.0.0 0 R
  625. :SUB
  626. IN UDP 6970 32000 0.0.0.0 0 0 AD
  627. :DESC
  628.  
  629. ~
  630. :ENABLE
  631. 1
  632. :END
  633.  
  634.  
  635. :INIT "QuickTime Server"
  636. IN TCP 6970 6970 192.168.0.2 0 0 -
  637. :SUB
  638. IN UDP 6970 7000 0.0.0.0 0 0 AD
  639. :DESC
  640. Set the IP address in this apprule to the IP address
  641. of your QuickTime Server
  642. ~
  643. :ENABLE
  644. 0
  645. :END
  646.  
  647.  
  648. :INIT "Napster"
  649. OUT TCP 6699 6699 0.0.0.0 0 R
  650. :SUB
  651. IN TCP 6699 6699 0.0.0.0 0 0 AD
  652. :DESC
  653.  
  654. ~
  655. :ENABLE
  656. 1
  657. :END
  658.  
  659.  
  660. :INIT "Netop Remote Control"
  661. OUT UDP 6502 6502 0.0.0.0 0 R
  662. :SUB
  663. IN UDP 6502 6502 0.0.0.0 0 0 AD
  664. :DESC
  665.  
  666. ~
  667. :ENABLE
  668. 1
  669. :END
  670.  
  671.  
  672. :INIT "Netop Remote Control Server"
  673. IN UDP 6502 6502 0.0.0.0 0 0 -
  674. :SUB
  675. :DESC
  676. Set the IP address in this apprule to the IP address
  677. of your Netop Remote Control Server
  678. ~
  679. :ENABLE
  680. 0
  681. :END
  682.  
  683.  
  684. :INIT "Timbuktu"
  685. OUT TCP 407 407 0.0.0.0 0 R
  686. :SUB
  687. IN TCP 1024 65534 0.0.0.0 0 0 D
  688. :DESC
  689.  
  690. ~
  691. :ENABLE
  692. 1
  693. :END
  694.  
  695.  
  696. :INIT "Virtual Network Computing"
  697. OUT TCP 5900 5900 0.0.0.0 0 R
  698. :SUB
  699. IN TCP 5900 5900 0.0.0.0 0 0 AD
  700. :DESC
  701.  
  702. ~
  703. :ENABLE
  704. 1
  705. :END
  706.  
  707.  
  708. :INIT "Virtual Network Computing Server"
  709. IN TCP 5900 5900 0.0.0.0 0 0 -
  710. :SUB
  711. :DESC
  712. Set the IP address in this apprule to the IP address
  713. of your Virtual Network Computing Server.
  714. ~
  715. :ENABLE
  716. 0
  717. :END
  718.  
  719.  
  720. :INIT "GNUtella"
  721. OUT TCP 6346 6346 0.0.0.0 0 R
  722. :SUB
  723. IN UDP 6346 6346 0.0.0.0 0 0 AD
  724. :DESC
  725.  
  726. ~
  727. :ENABLE
  728. 1
  729. :END
  730.  
  731.  
  732. :INIT "Dialpad"
  733. OUT TCP 7175 7175 0.0.0.0 0 R
  734. :SUB
  735. IN UDP 51200 51201 0.0.0.0 0 0 AD
  736. IN TCP 51210 51210 0.0.0.0 0 0 AD
  737. IN TCP 1584 1585 0.0.0.0 0 0 AD
  738. OUT TCP 8680 8686 0.0.0.0 0 D
  739. :DESC
  740.  
  741. ~
  742. :ENABLE
  743. 1
  744. :END
  745.  
  746.  
  747. :INIT "ICQ99"
  748. OUT UDP 4000 4000 0.0.0.0 18000000 R
  749. :SUB
  750. IN TCP 20000 20019 0.0.0.0 0 0 AD
  751. :DESC
  752.  
  753. ~
  754. :ENABLE
  755. 1
  756. :END
  757.  
  758.  
  759. :INIT "ICQ99 client 1"
  760. OUT UDP 4000 4000 192.168.0.2 18000000 R
  761. :SUB
  762. IN TCP 20000 20019 0.0.0.0 0 0 AD
  763. :DESC
  764. Set the IP address in this apprule to the IP address
  765. of your first ICQ99 client.  Then enable the following
  766. apprules, one for each ICQ client. Then in ICQ under
  767. 'Preferences & security', 'Preferences' and Connections,
  768. click on 'I am behind a firewall or proxy' then click on
  769. 'Firewall Settings' then click 'I don't have a SOCKS Proxy
  770. server on my firewall or I am using another Proxy server
  771. 'then click Next then click 'Use the following TCP listen
  772. ports for incoming event' and set the TCP ports for the
  773. corresponding port numbers 20000 to 20019
  774. ~
  775. :ENABLE
  776. 0
  777. :END
  778.  
  779.  
  780. :INIT "ICQ99 client 2"
  781. OUT UDP 4000 4000 192.168.0.3 18000000 R
  782. :SUB
  783. IN TCP 20020 20039 0.0.0.0 0 0 AD
  784. :DESC
  785. Set the IP address in this apprule to the IP address
  786. of your second ICQ99 client.  Then enable the following
  787. apprules, one for each ICQ client. Then in ICQ under
  788. 'Preferences & security', 'Preferences' and Connections,
  789. click on 'I am behind a firewall or proxy' then click on
  790. 'Firewall Settings' then click 'I don't have a SOCKS Proxy
  791. server on my firewall or I am using another Proxy server
  792. 'then click Next then click 'Use the following TCP listen
  793. ports for incoming event' and set the TCP ports for the
  794. corresponding port numbers 20020 to 20039
  795. ~
  796. :ENABLE
  797. 0
  798. :END
  799.  
  800.  
  801. :INIT "ICQ99 client 3"
  802. OUT UDP 4000 4000 192.168.0.4 18000000 R
  803. :SUB
  804. IN TCP 20040 20059 0.0.0.0 0 0 AD
  805. :DESC
  806. Set the IP address in this apprule to the IP address
  807. of your third ICQ99 client.  Then enable the following
  808. apprules, one for each ICQ client. Then in ICQ under
  809. 'Preferences & security', 'Preferences' and Connections,
  810. click on 'I am behind a firewall or proxy' then click on
  811. 'Firewall Settings' then click 'I don't have a SOCKS Proxy
  812. server on my firewall or I am using another Proxy server
  813. 'then click Next then click 'Use the following TCP listen
  814. ports for incoming event' and set the TCP ports for the
  815. corresponding port numbers 20040 to 20059
  816. ~
  817. :ENABLE
  818. 0
  819. :END
  820.  
  821.  
  822. :INIT "ICQ2000 & AIM Talk"
  823. OUT TCP 5190 5190 0.0.0.0 18000000 R
  824. :SUB
  825. IN TCP 5190 5190 0.0.0.0 0 0 D
  826. IN TCP 20000 20019 0.0.0.0 0 0 AD
  827. :DESC
  828.  
  829. ~
  830. :ENABLE
  831. 1
  832. :END
  833.  
  834.  
  835. :INIT "ICQ2000 client 1"
  836. OUT TCP 5190 5190 192.168.0.2 18000000 R
  837. :SUB
  838. IN TCP 5190 5190 0.0.0.0 0 0 D
  839. IN TCP 20000 20019 0.0.0.0 0 0 AD
  840. :DESC
  841. Set the IP address in this apprule to the IP address
  842. of your first ICQ2000 client. Then enable the following
  843. apprules, one for each ICQ client. In ICQ under
  844. 'Preferences & security', click 'Preferences'
  845. Then goto Connections, click on User, click on
  846. 'Not using Proxy' then click 'Use the following TCP
  847. listen ports for incoming event' and set the TCP ports
  848. for the corresponding port numbers 20000 to 20019 
  849. ~
  850. :ENABLE
  851. 0
  852. :END
  853.  
  854.  
  855. :INIT "ICQ2000 client 2"
  856. OUT TCP 5190 5190 192.168.0.3 18000000 R
  857. :SUB
  858. IN TCP 5190 5190 0.0.0.0 0 0 D
  859. IN TCP 20020 20039 0.0.0.0 0 0 AD
  860. :DESC
  861. Set the IP address in this apprule to the IP address
  862. of your second ICQ2000 client. Then enable the following
  863. apprules, one for each ICQ client. In ICQ under
  864. 'Preferences & security', click 'Preferences'
  865. Then goto Connections, click on User, click on
  866. 'Not using Proxy' then click 'Use the following TCP
  867. listen ports for incoming event' and set the TCP ports
  868. for the corresponding port numbers 20020 to 20039 
  869. ~
  870. :ENABLE
  871. 0
  872. :END
  873.  
  874.  
  875. :INIT "ICQ2000 client 3"
  876. OUT TCP 5190 5190 192.168.0.4 18000000 R
  877. :SUB
  878. IN TCP 5190 5190 0.0.0.0 0 0 D
  879. IN TCP 20040 20059 0.0.0.0 0 0 AD
  880. :DESC
  881. Set the IP address in this apprule to the IP address
  882. of your third ICQ2000 client. Then enable the following
  883. apprules, one for each ICQ client. In ICQ under
  884. 'Preferences & security', click 'Preferences'
  885. Then goto Connections, click on User, click on
  886. 'Not using Proxy' then click 'Use the following TCP
  887. listen ports for incoming event' and set the TCP ports
  888. for the corresponding port numbers 20040 to 20059 
  889. ~
  890. :ENABLE
  891. 0
  892. :END
  893.  
  894.  
  895. :INIT "BuddyPhone client 1"
  896. OUT TCP 700 700 192.168.0.2 0 R
  897. :SUB
  898. IN TCP 710 710 0.0.0.0 0 0 AD
  899. :DESC
  900. Set the IP address in this apprule to the IP address
  901. of your second BuddyPhone client. In BuddyPhone,
  902. set the port number to 710
  903. ~
  904. :ENABLE
  905. 0
  906. :END
  907.  
  908.  
  909. :INIT "BuddyPhone client 2"
  910. OUT TCP 700 700 192.168.0.3 0 R
  911. :SUB
  912. IN TCP 711 711 0.0.0.0 0 0 AD
  913. :DESC
  914. Set the IP address in this apprule to the IP address
  915. of your second BuddyPhone client. In BuddyPhone,
  916. set the port number to 711
  917. ~
  918. :ENABLE
  919. 0
  920. :END
  921.  
  922.  
  923. :INIT "BuddyPhone client 3"
  924. OUT TCP 700 700 192.168.0.4 0 R
  925. :SUB
  926. IN TCP 712 712 0.0.0.0 0 0 AD
  927. :DESC
  928. Set the IP address in this apprule to the IP address
  929. of your second BuddyPhone client. In BuddyPhone,
  930. set the port number to 712
  931. ~
  932. :ENABLE
  933. 0
  934. :END
  935.  
  936.  
  937. :INIT "Abbott Chat"
  938. OUT TCP 18236 18236 0.0.0.0 0 R
  939. :SUB
  940. IN UDP 18231 18231 0.0.0.0 0 0 AD
  941. IN TCP 18232 18235 0.0.0.0 0 0 AD
  942. :DESC
  943.  
  944. ~
  945. :ENABLE
  946. 1
  947. :END
  948.  
  949. :INIT "PalTalk1"
  950. OUT TCP 5001 5001 0.0.0.0 0 R
  951. :SUB
  952. IN UDP 2090 2091 0.0.0.0 0 0 AD
  953. IN TCP 2090 2091 0.0.0.0 0 0 AD
  954. IN TCP 2095 2095 0.0.0.0 0 0 AD
  955. IN TCP 5200 5203 0.0.0.0 0 0 AD
  956. OUT UDP 2090 2091 0.0.0.0 0 D
  957. OUT TCP 2090 2091 0.0.0.0 0 D
  958. OUT TCP 2095 2095 0.0.0.0 0 D
  959. OUT TCP 5200 5203 0.0.0.0 0 D
  960. :DESC
  961.  
  962. ~
  963. :ENABLE
  964. 1
  965. :END
  966.  
  967.  
  968. :INIT "PalTalk2"
  969. OUT TCP 5002 5002 0.0.0.0 0 R
  970. :SUB
  971. IN UDP 2090 2091 0.0.0.0 0 0 AD
  972. IN TCP 2090 2091 0.0.0.0 0 0 AD
  973. IN TCP 2095 2095 0.0.0.0 0 0 AD
  974. IN TCP 5200 5203 0.0.0.0 0 0 AD
  975. OUT UDP 2090 2091 0.0.0.0 0 D
  976. OUT TCP 2090 2091 0.0.0.0 0 D
  977. OUT TCP 2095 2095 0.0.0.0 0 D
  978. OUT TCP 5200 5203 0.0.0.0 0 D
  979. :DESC
  980.  
  981. ~
  982. :ENABLE
  983. 1
  984. :END
  985.  
  986.  
  987. :INIT "PalTalk3"
  988. OUT TCP 5003 5003 0.0.0.0 0 R
  989. :SUB
  990. IN UDP 2090 2091 0.0.0.0 0 0 AD
  991. IN TCP 2090 2091 0.0.0.0 0 0 AD
  992. IN TCP 2095 2095 0.0.0.0 0 0 AD
  993. IN TCP 5200 5203 0.0.0.0 0 0 AD
  994. OUT UDP 2090 2091 0.0.0.0 0 D
  995. OUT TCP 2090 2091 0.0.0.0 0 D
  996. OUT TCP 2095 2095 0.0.0.0 0 D
  997. OUT TCP 5200 5203 0.0.0.0 0 D
  998. :DESC
  999.  
  1000. ~
  1001. :ENABLE
  1002. 1
  1003. :END
  1004.  
  1005.  
  1006. :INIT "PalTalk4"
  1007. OUT TCP 5004 5004 0.0.0.0 0 R
  1008. :SUB
  1009. IN UDP 2090 2091 0.0.0.0 0 0 AD
  1010. IN TCP 2090 2091 0.0.0.0 0 0 AD
  1011. IN TCP 2095 2095 0.0.0.0 0 0 AD
  1012. IN TCP 5200 5203 0.0.0.0 0 0 AD
  1013. OUT UDP 2090 2091 0.0.0.0 0 D
  1014. OUT TCP 2090 2091 0.0.0.0 0 D
  1015. OUT TCP 2095 2095 0.0.0.0 0 D
  1016. OUT TCP 5200 5203 0.0.0.0 0 D
  1017. :DESC
  1018.  
  1019. ~
  1020. :ENABLE
  1021. 1
  1022. :END
  1023.  
  1024.  
  1025. :INIT "PalTalk5"
  1026. OUT TCP 5005 5005 0.0.0.0 0 R
  1027. :SUB
  1028. IN UDP 2090 2091 0.0.0.0 0 0 AD
  1029. IN TCP 2090 2091 0.0.0.0 0 0 AD
  1030. IN TCP 2095 2095 0.0.0.0 0 0 AD
  1031. IN TCP 5200 5203 0.0.0.0 0 0 AD
  1032. OUT UDP 2090 2091 0.0.0.0 0 D
  1033. OUT TCP 2090 2091 0.0.0.0 0 D
  1034. OUT TCP 2095 2095 0.0.0.0 0 D
  1035. OUT TCP 5200 5203 0.0.0.0 0 D
  1036. :DESC
  1037.  
  1038. ~
  1039. :ENABLE
  1040. 1
  1041. :END
  1042.  
  1043.  
  1044. :INIT "PalTalk Video"
  1045. OUT TCP 8080 8080 0.0.0.0 0 -
  1046. :SUB
  1047. IN TCP 8080 8080 0.0.0.0 0 0 AD
  1048. :DESC
  1049.  
  1050. ~
  1051. :ENABLE
  1052. 1
  1053. :END
  1054.  
  1055.  
  1056. :INIT "ICUII Client"
  1057. OUT TCP 2019 2019 0.0.0.0 0 R
  1058. :SUB
  1059. IN TCP 2000 2038 0.0.0.0 0 0 AD
  1060. IN TCP 2050 2051 0.0.0.0 0 0 AD
  1061. IN TCP 2069 2069 0.0.0.0 0 0 AD
  1062. IN TCP 2085 2085 0.0.0.0 0 0 AD
  1063. IN TCP 3010 3030 0.0.0.0 0 0 AD
  1064. OUT TCP 2000 2038 0.0.0.0 0 D
  1065. OUT TCP 2050 2051 0.0.0.0 0 D
  1066. OUT TCP 2069 2069 0.0.0.0 0 D
  1067. OUT TCP 2085 2085 0.0.0.0 0 D
  1068. OUT TCP 3010 3030 0.0.0.0 0 D
  1069. :DESC
  1070.  
  1071. ~
  1072. :ENABLE
  1073. 1
  1074. :END
  1075.  
  1076.  
  1077. :INIT "MSN Messenger"
  1078. OUT TCP 1863 1863 0.0.0.0 18000000 R
  1079. :SUB
  1080. IN TCP 1863 1863 0.0.0.0 0 0 AD
  1081. :DESC
  1082.  
  1083. ~
  1084. :ENABLE
  1085. 1
  1086. :END
  1087.  
  1088.  
  1089. :INIT "Powwow 4.0"
  1090. OUT TCP 13224 13224 0.0.0.0 0 R
  1091. :SUB
  1092. IN TCP 1863 1863 0.0.0.0 0 0 AD
  1093. IN TCP 13223 13224 0.0.0.0 0 0 AD
  1094. IN TCP 23213 23214 0.0.0.0 0 0 AD
  1095. IN UDP 13223 13223 0.0.0.0 0 0 AD
  1096. :DESC
  1097. This apprule must be used with the MSN Messanger apprule
  1098. ~
  1099. :ENABLE
  1100. 1
  1101. :END
  1102.  
  1103.  
  1104. :INIT "Ultima Online"
  1105. OUT TCP 7775 7775 0.0.0.0 0 R
  1106. :SUB
  1107. IN TCP 5001 5010 0.0.0.0 0 0 AD
  1108. IN TCP 7775 7777 0.0.0.0 0 0 AD
  1109. IN TCP 8888 8888 0.0.0.0 0 0 AD
  1110. IN TCP 8800 8900 0.0.0.0 0 0 AD
  1111. IN TCP 9999 9999 0.0.0.0 0 0 AD
  1112. IN TCP 7875 7875 0.0.0.0 0 0 AD
  1113. OUT TCP 5001 5010 0.0.0.0 0 D
  1114. OUT TCP 7775 7777 0.0.0.0 0 D
  1115. OUT TCP 8888 8888 0.0.0.0 0 D
  1116. OUT TCP 8800 8900 0.0.0.0 0 D
  1117. OUT TCP 9999 9999 0.0.0.0 0 D
  1118. OUT TCP 7875 7875 0.0.0.0 0 D
  1119. :DESC
  1120.  
  1121. ~
  1122. :ENABLE
  1123. 1
  1124. :END
  1125.  
  1126.  
  1127. :INIT "Netmeeting"
  1128. OUT TCP 1720 1720 0.0.0.0 0 RH
  1129. :SUB
  1130. IN UDP 1024 65534 0.0.0.0 0 0 HD
  1131. IN TCP 1024 1502 0.0.0.0 0 0 HD
  1132. IN TCP 1504 1730 0.0.0.0 0 0 HD
  1133. IN TCP 1732 65534 0.0.0.0 0 0 HD
  1134. IN TCP 1503 1503 0.0.0.0 0 0 D
  1135. IN TCP 1731 1731 0.0.0.0 0 0 D
  1136. OUT UDP 1024 65534 0.0.0.0 0 HD
  1137. OUT TCP 1024 1502 0.0.0.0 0 HD
  1138. OUT TCP 1504 1730 0.0.0.0 0 HD
  1139. OUT TCP 1732 65534 0.0.0.0 0 HD
  1140. OUT TCP 1503 1503 0.0.0.0 0 D
  1141. OUT TCP 1731 1731 0.0.0.0 0 D
  1142. :DESC
  1143. H.323 compliant video player, NetMeeting 2.0, 3.0, Intel Video Phone
  1144. Incoming calls are not possible due to NetMeeting assigning ports 
  1145. dynamically.
  1146. ~
  1147. :ENABLE
  1148. 1
  1149. :END
  1150.  
  1151.  
  1152. :INIT "Battle.net"
  1153. OUT TCP 6112 6112 0.0.0.0 0 R
  1154. :SUB
  1155. IN UDP 6112 6112 0.0.0.0 0 0 AD
  1156. :DESC
  1157. This Battle.net apprule is for Diablo, WarCraft II only
  1158. we added built-in support for StarCraft.
  1159. Because of some limitations with Blizzards battle.net only one person
  1160. at a time can play Diablo or WarCraft.  StarCraft, however supports
  1161. multiple Sybergen Access Server clients and SyGate clients playing at
  1162. the same time.  But the Sybergen Access Server and SyGate server can
  1163. not join a game with any of its client computers.
  1164. ~
  1165. :ENABLE
  1166. 1
  1167. :END
  1168.  
  1169.  
  1170. :INIT "Everquest"
  1171. OUT UDP 5999 5999 0.0.0.0 0 R
  1172. :SUB
  1173. IN UDP 5999 5999 0.0.0.0 0 0 D
  1174. :DESC
  1175. To get Everquest working:
  1176.  
  1177. 1. Make sure you're using the latest build of SyGate
  1178. 2. Install the EverQuest game on the SyGate server. It doesn't need
  1179. to be running, just installed on the server.
  1180.  
  1181. Everquest will work on SyGate.  However, few customers have reported
  1182. it will freeze after playing the game for limited time and must reboot
  1183. the system.  The only solution to it for now is to start the game on
  1184. SyGate server first, then let the client PC join the game, that will
  1185. solve the problem.  We are still waiting for solution from the Sony
  1186. Interactive regarding this matter.
  1187. ~
  1188. :ENABLE
  1189. 0
  1190. :END
  1191.  
  1192.  
  1193. :INIT "Abuse.net"
  1194. OUT TCP 43 43 0.0.0.0 0 R
  1195. :SUB
  1196. IN TCP 43 43 0.0.0.0 0 0 AD
  1197. IN TCP 113 113 0.0.0.0 0 0 AD
  1198. OUT TCP 113 113 0.0.0.0 0 D
  1199. :DESC
  1200.  
  1201. ~
  1202. :ENABLE
  1203. 1
  1204. :END
  1205.  
  1206.  
  1207. :INIT "ActiveWorld"
  1208. OUT TCP 7777 7777 0.0.0.0 0 R
  1209. :SUB
  1210. IN TCP 7000 7100 0.0.0.0 0 0 AD
  1211. :DESC
  1212.  
  1213. ~
  1214. :ENABLE
  1215. 1
  1216. :END
  1217.  
  1218.  
  1219. :INIT "Netrek"
  1220. OUT TCP 2592 2592 0.0.0.0 0 R
  1221. :SUB
  1222. IN UDP 11000 12000 0.0.0.0 0 0 AD
  1223. IN TCP 11687 11687 0.0.0.0 0 0 AD
  1224. :DESC
  1225.  
  1226. ~
  1227. :ENABLE
  1228. 1
  1229. :END
  1230.  
  1231.  
  1232. :INIT "Netrek Server List"
  1233. OUT UDP 3521 3521 0.0.0.0 0 R
  1234. :SUB
  1235. IN UDP 7000 7010 0.0.0.0 0 0 AD
  1236. :DESC
  1237.  
  1238. ~
  1239. :ENABLE
  1240. 1
  1241. :END
  1242.  
  1243. :INIT "DirectPlay"
  1244. OUT TCP 47624 47624 0.0.0.0 0 R
  1245. :SUB
  1246. IN TCP 47624 47624 0.0.0.0 0 0 AD
  1247. IN UDP 2300 2400 0.0.0.0 0 0 AD
  1248. IN TCP 2300 2400 0.0.0.0 0 0 AD
  1249. IN TCP 9110 9110 0.0.0.0 0 0 AD
  1250. IN TCP 9113 9113 0.0.0.0 0 0 AD
  1251. IN TCP 28800 29000 0.0.0.0 0 0 AD
  1252. IN UDP 8000 9000 0.0.0.0 0 0 AD
  1253. IN TCP 8000 9000 0.0.0.0 0 0 AD
  1254. OUT UDP 2300 2400 0.0.0.0 0 D
  1255. OUT TCP 2300 2400 0.0.0.0 0 D
  1256. OUT TCP 9110 9110 0.0.0.0 0 D
  1257. OUT TCP 9113 9113 0.0.0.0 0 D
  1258. OUT TCP 28800 29000 0.0.0.0 0 D
  1259. OUT UDP 8000 9000 0.0.0.0 0 D
  1260. OUT TCP 8000 9000 0.0.0.0 0 D
  1261. :DESC
  1262. DirectPlay for Game Zone, Mplayer, Boneyards
  1263. Most DirectPlay games use this rule
  1264. ~
  1265. :ENABLE
  1266. 1
  1267. :END
  1268.  
  1269.  
  1270. :INIT "The Zone"
  1271. OUT UDP 28800 28800 0.0.0.0 0 R
  1272. :SUB
  1273. IN TCP 47624 47624 0.0.0.0 0 0 AD
  1274. IN UDP 2300 2400 0.0.0.0 0 0 AD
  1275. IN TCP 2300 2400 0.0.0.0 0 0 AD
  1276. IN TCP 28800 29000 0.0.0.0 0 0 AD
  1277. IN UDP 28800 28800 0.0.0.0 0 0 AD
  1278. OUT TCP 47624 47624 0.0.0.0 0 D
  1279. OUT UDP 2300 2400 0.0.0.0 0 D
  1280. OUT TCP 2300 2400 0.0.0.0 0 D
  1281. OUT TCP 28800 29000 0.0.0.0 0 D
  1282. :DESC
  1283. For hosting on the MSN Gaming Zone
  1284. ~
  1285. :ENABLE
  1286. 1
  1287. :END
  1288.  
  1289.  
  1290. :INIT "Westwood Online"
  1291. OUT TCP 4000 4000 0.0.0.0 0 R
  1292. :SUB
  1293. IN TCP 4000 4000 0.0.0.0 0 0 AD
  1294. IN UDP 1140 1234 0.0.0.0 0 0 AD
  1295. IN TCP 1140 1234 0.0.0.0 0 0 AD
  1296. OUT UDP 1140 1234 0.0.0.0 0 D
  1297. OUT TCP 1140 1234 0.0.0.0 0 D
  1298. :DESC
  1299. Westwood Online for C&C Tiberian Sun & Dune 2000
  1300.  
  1301. Westwood Online supports only one user per public IP 
  1302. address at any given time.
  1303. ~
  1304. :ENABLE
  1305. 1
  1306. :END
  1307.  
  1308.  
  1309. :INIT "Rainbow Six"
  1310. OUT TCP 2346 2346 0.0.0.0 0 R
  1311. :SUB
  1312. IN TCP 2346 2346 0.0.0.0 0 0 AD
  1313. :DESC
  1314.  
  1315. ~
  1316. :ENABLE
  1317. 1
  1318. :END
  1319.  
  1320.  
  1321. :INIT "Rainbow Six Server"
  1322. IN TCP 2346 2346 192.168.0.2 0 0 -
  1323. :SUB
  1324. :DESC
  1325. Set the IP address in this apprule to the IP address
  1326. of your Rainbow Six Server.
  1327. ~
  1328. :ENABLE
  1329. 0
  1330. :END
  1331.  
  1332.  
  1333. :INIT "Delta Force"
  1334. OUT UDP 3568 3568 0.0.0.0 0 R
  1335. :SUB
  1336. IN TCP 3100 3999 0.0.0.0 0 0 AD
  1337. IN UDP 3100 3999 0.0.0.0 0 0 AD
  1338. OUT UDP 3100 3999 0.0.0.0 0 D
  1339. OUT TCP 3100 3999 0.0.0.0 0 D
  1340. :DESC
  1341.  
  1342. ~
  1343. :ENABLE
  1344. 1
  1345. :END
  1346.  
  1347.  
  1348. :INIT "Delta Force Server"
  1349. OUT UDP 3568 3568 192.168.0.2 0 -
  1350. :SUB
  1351. IN TCP 3100 3999 0.0.0.0 0 0 AD
  1352. IN UDP 3100 3999 0.0.0.0 0 0 AD
  1353. OUT UDP 3100 3999 0.0.0.0 0 D
  1354. OUT TCP 3100 3999 0.0.0.0 0 D
  1355. :DESC
  1356. Set the IP address in this apprule to the IP address
  1357. of your Delta Force Server.
  1358. ~
  1359. :ENABLE
  1360. 0
  1361. :END
  1362.  
  1363.  
  1364. :INIT "Soldier Of Fortune"
  1365. OUT TCP 28910 28910 0.0.0.0 0 R
  1366. :SUB
  1367. IN TCP 28910 28910 0.0.0.0 0 0 AD
  1368. :DESC
  1369.  
  1370. ~
  1371. :ENABLE
  1372. 1
  1373. :END
  1374.  
  1375.  
  1376. :INIT "Half Life"
  1377. OUT TCP 27015 27015 0.0.0.0 0 R
  1378. :SUB
  1379. IN TCP 27015 27015 0.0.0.0 0 0 AD
  1380. :DESC
  1381.  
  1382. ~
  1383. :ENABLE
  1384. 1
  1385. :END
  1386.  
  1387.  
  1388. :INIT "Half Life Server"
  1389. IN TCP 27015 27015 192.168.0.2 0 0 -
  1390. :SUB
  1391. :DESC
  1392. Set the IP address in this apprule to the IP address
  1393. of your Half Life Server.
  1394. ~
  1395. :ENABLE
  1396. 0
  1397. :END
  1398.  
  1399.  
  1400. :INIT "Tribes1 Server"
  1401. OUT UDP 28000 28000 192.168.0.2 0 R
  1402. :SUB
  1403. IN UDP 28000 28008 0.0.0.0 0 0 AD
  1404. OUT UDP 28000 28008 0.0.0.0 0 D
  1405. :DESC
  1406. Set the IP address in this apprule to the IP address
  1407. of your Tribes1 Server.
  1408. ~
  1409. :ENABLE
  1410. 0
  1411. :END
  1412.  
  1413.  
  1414. :INIT "Quake2 Server"
  1415. IN UDP 27910 27910 192.168.0.2 0 0 -
  1416. :SUB
  1417. :DESC
  1418. Set the IP address in this apprule to the IP address
  1419. of your Quake2 Server.
  1420. ~
  1421. :ENABLE
  1422. 0
  1423. :END
  1424.  
  1425.  
  1426. :INIT "Bungie.net Server"
  1427. IN TCP 3453 3453 192.168.0.2 0 0 -
  1428. :SUB
  1429. :DESC
  1430. Set the IP address in this apprule to the IP address
  1431. of your computer hosting on Bungie.net
  1432. ~
  1433. :ENABLE
  1434. 0
  1435. :END
  1436.  
  1437.  
  1438. :INIT "Unreal Server"
  1439. IN TCP 7777 7777 192.168.0.2 0 0 -
  1440. :SUB
  1441. :DESC
  1442. Set the IP address in this apprule to the IP address
  1443. of your Unreal Server.
  1444. ~
  1445. :ENABLE
  1446. 0
  1447. :END
  1448.  
  1449.  
  1450. :INIT "UT Game Data"
  1451. IN UDP 7777 7777 192.168.0.2 0 0 -
  1452. :SUB
  1453. :DESC
  1454. Set the IP address in this apprule to the IP address
  1455. of your Unreal Tournament Server.
  1456. ~
  1457. :ENABLE
  1458. 0
  1459. :END
  1460.  
  1461.  
  1462. :INIT "UT Server Query"
  1463. IN UDP 7778 7778 192.168.0.2 0 0 -
  1464. :SUB
  1465. :DESC
  1466. Set the IP address in this apprule to the IP address
  1467. of your Unreal Tournament Server.
  1468. ~
  1469. :ENABLE
  1470. 0
  1471. :END
  1472.  
  1473.  
  1474. :INIT "UT Server Uplink"
  1475. OUT TCP 27900 27900 0.0.0.0 60000 -
  1476. :SUB
  1477. IN UDP 7779 7781 0.0.0.0 0 0 A
  1478. :DESC
  1479. Set the IP address in this apprule to the IP address
  1480. of your Unreal Tournament Server.
  1481. ~
  1482. :ENABLE
  1483. 0
  1484. :END
  1485.  
  1486.  
  1487. :INIT "UT Webserver"
  1488. IN TCP 8888 8888 192.168.0.2 0 0 -
  1489. :SUB
  1490. :DESC
  1491. Set the IP address in this apprule to the IP address
  1492. of your Unreal Tournament Server.
  1493. ~
  1494. :ENABLE
  1495. 0
  1496. :END
  1497.  
  1498.  
  1499. :INIT "Nullsoft Shoutcast Server"
  1500. IN TCP 8000 8000 192.168.0.2 0 0 -
  1501. :SUB
  1502. IN TCP 8001 8001 0.0.0.0 0 0 -
  1503. :DESC
  1504. Set the IP address in this apprule to the IP address
  1505. of your Nullsoft Shoutcast Server.
  1506. ~
  1507. :ENABLE
  1508. 0
  1509. :END
  1510.  
  1511.  
  1512. :INIT "Fuse Server"
  1513. IN TCP 4500 4500 192.168.0.2 0 0 -
  1514. :SUB
  1515. :DESC
  1516. Set the IP address in this apprule to the IP address
  1517. of your Fuse Server.
  1518. ~
  1519. :ENABLE
  1520. 0
  1521. :END
  1522.  
  1523.  
  1524. :INIT "Heretic II Server"
  1525. IN TCP 28910 28910 192.168.0.2 0 0 -
  1526. :SUB
  1527. :DESC
  1528. Set the IP address in this apprule to the IP address
  1529. of your Heretic II Server.
  1530. ~
  1531. :ENABLE
  1532. 0
  1533. :END
  1534.  
  1535.  
  1536. :INIT "Hexen II Server 1"
  1537. IN UDP 26900 26900 192.168.0.2 0 0 -
  1538. :SUB
  1539. :DESC
  1540. Set the IP address in this apprule to the IP address
  1541. of your first Hexen II Server. Then set the Port
  1542. number to 26900
  1543. ~
  1544. :ENABLE
  1545. 0
  1546. :END
  1547.  
  1548.  
  1549. :INIT "Hexen II Server 2"
  1550. IN UDP 26901 26901 192.168.0.3 0 0 -
  1551. :SUB
  1552. :DESC
  1553. Set the IP address in this apprule to the IP address
  1554. of your second Hexen II Server. Then set the Port
  1555. number to 26901
  1556. ~
  1557. :ENABLE
  1558. 0
  1559. :END
  1560.  
  1561.  
  1562. :INIT "Hexen II Server 3"
  1563. IN UDP 26902 26902 192.168.0.4 0 0 -
  1564. :SUB
  1565. :DESC
  1566. Set the IP address in this apprule to the IP address
  1567. of your third Hexen II Server. Then set the Port
  1568. number to 26902
  1569. ~
  1570. :ENABLE
  1571. 0
  1572. :END
  1573.  
  1574.  
  1575. :INIT "Laplink server"
  1576. IN TCP 1547 1547 192.168.0.2 0 0 -
  1577. :SUB
  1578. :DESC
  1579. Set the IP address in this apprule to the IP address
  1580. of your Laplink Server.
  1581. ~
  1582. :ENABLE
  1583. 0
  1584. :END
  1585.  
  1586.  
  1587. :INIT "Remotely Possible Server"
  1588. IN TCP 799 799 192.168.0.2 0 0 -
  1589. :SUB
  1590. :DESC
  1591. Set the IP address in this apprule to the IP address
  1592. of your Remotely Possible Server.
  1593. ~
  1594. :ENABLE
  1595. 0
  1596. :END
  1597.  
  1598.  
  1599. :INIT "Lotus Notes Server"
  1600. IN TCP 1352 1352 192.168.0.2 0 0 -
  1601. :SUB
  1602. :DESC
  1603. Set the IP address in this apprule to the IP address
  1604. of your Lotus Notes Server.
  1605. ~
  1606. :ENABLE
  1607. 0
  1608. :END
  1609.  
  1610.  
  1611. :INIT "pcANYWHERE Use"
  1612. IN TCP 5631 5631 192.168.0.2 0 0 -
  1613. :SUB
  1614. :DESC
  1615. Set the IP address in this apprule to the IP address
  1616. of your PCAnywhere Host.
  1617. ~
  1618. :ENABLE
  1619. 0
  1620. :END
  1621.  
  1622.  
  1623. :INIT "pcANYWHERE Seek"
  1624. IN UDP 5632 5632 192.168.0.2 0 0 -
  1625. :SUB
  1626. IN UDP 22 22 0.0.0.0 0 0 -
  1627. :DESC
  1628. Set the IP address in this apprule to the IP address
  1629. of your PCAnywhere Host.
  1630. ~
  1631. :ENABLE
  1632. 0
  1633. :END
  1634.  
  1635.  
  1636. :INIT "Our WEB Server"
  1637. IN TCP 80 80 192.168.0.2 0 0 -
  1638. :SUB
  1639. :DESC
  1640. Set the IP address in this apprule to the IP address
  1641. of your Web Server.
  1642. ~
  1643. :ENABLE
  1644. 0
  1645. :END
  1646.  
  1647.  
  1648. :INIT "Our FTP server"
  1649. IN TCP 21 21 192.168.0.2 0 86400000 -
  1650. :SUB
  1651. :DESC
  1652. Set the IP address in this apprule to the IP address
  1653. of your FTP Server.
  1654. ~
  1655. :ENABLE
  1656. 0
  1657. :END
  1658.  
  1659.  
  1660. :INIT "Our TELNET server"
  1661. IN TCP 23 23 192.168.0.2 0 36000000 -
  1662. :SUB
  1663. :DESC
  1664. Set the IP address in this apprule to the IP address
  1665. of your Telnet Server.
  1666. ~
  1667. :ENABLE
  1668. 0
  1669. :END
  1670.  
  1671.  
  1672. :INIT "Our Mail(POP3) server"
  1673. IN TCP 110 110 192.168.0.2 0 0 -
  1674. :SUB
  1675. :DESC
  1676. Set the IP address in this apprule to the IP address
  1677. of your POP3 Mail Server.
  1678. ~
  1679. :ENABLE
  1680. 0
  1681. :END
  1682.  
  1683.  
  1684. :INIT "Our Mail(SMTP) server"
  1685. IN TCP 25 25 192.168.0.2 0 0 -
  1686. :SUB
  1687. :DESC
  1688. Set the IP address in this apprule to the IP address
  1689. of your SMTP Mail Server.
  1690. ~
  1691. :ENABLE
  1692. 0
  1693. :END
  1694.